strtolower -- 轉小寫
strtoupper -- 轉大寫
寫PHP 的程式,處理字串是非常常做也需要做的工作,這一篇就跟大家講解如何進行字串大小寫的轉換。
strtolower -- 將字串全部都轉小寫
語法如下:
strtolower (要轉換的字串變數);
strtolower換傳回轉後的字串。
example:
<?php
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtolower($str);
?>
上列程式執行後的結果,$str的字傳會變成
mary had a little lamb and she loved it so
strtoupper -- 將字串全部都轉大寫
語法如下:
strtoupper (要轉換的字串變數);
strtoupper 換傳回轉後的字串。
<?php
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtoupper($str);
?>
上列程式執行後的結果,$str的字傳會變成
MARY HAD A LITTLE LAMB AND SHE LOVED IT SO